/*
Theme Name: Minimalist
Theme URI: https://karolpelc.com
Author: Karol Pelc
Author URI: https://karolpelc.com/blog
Description: Basic WordPress theme
Version: 1.0.0
*/

html {
  height: 100%;
  position: relative;
}

body {
  background-image:
      linear-gradient(
        to top right,
        /* darker, lighter */
        #a8a8a8, #ffffff
      );
  background-size: cover;
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.container_encompassing{
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  width: 1200px;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
    .container_encompassing {
        width:90%;
    }
}

img {
  padding: 0;
  border: 0;
  display: block;
  height: auto;
  margin: auto;
  object-fit: cover;
}

@media only screen and (max-width: 1200px) {
    img {
         width: 100%;
    }
}


/* HYPERLINKS */

.icon p a {

  text-decoration: none;
  font-weight: bold;
  color: #1998e6;
}
.icon p a:hover {
  color: #fff;
  text-shadow: 0 2px 8px #000000;
}


/* NAV BAR */
/* ------------------------------------------*/
.nav_bar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  /* position: fixed; */
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.nav_bar li {
  float: left;
}

.nav_bar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
}

.nav_bar li a:hover:not(.active) {
  background-color: #111;
}

.nav_bar_active_page {
  /* background-color: #4CAF50; -GREEN */
  background-color: #7a7a7a
}

/* FOOTER */
/* ------------------------------------------*/
.footer {
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  flex-shrink: 0;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.footer li {
  float: left;
}

.footer li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.footer li a:hover:not(.active) {
  color: #333;
}

/* TEXT */
/* ------------------------------------------*/
body {
  font-family: 'Noto Sans', sans-serif;
  position: relative;
}

.text_font_header {
  font-family: 'Roboto', sans-serif;
}

.text_font_main {
  font-family: 'Noto Sans', sans-serif;
}

.txt-home-large{
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  vertical-align: top;
  color: rgba(0,0,0,0.55);
  top: 0;
}

.txt-home-mdium{
  text-align: left;
  font-size: 1.3em;
  font-weight: bold;
  vertical-align: top;
  color: rgba(0,0,0,0.55);
  top: 0;
}

/* WordPress POST */
/* ------------------------------------------*/

.post-header{
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  padding-top: 18px;
}

.post-header a{
  color: black;
  text-decoration: none;
}

.post-header a:hover:not(.active) {
  color: white;
  text-decoration: none;
}

.post-excerpt{
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9em;
  text-align: justify;
  text-justify: inter-word;
}

.post-content{
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9em;
  text-align: justify;
  text-justify: inter-word;
}
.post-date {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7em;
  text-align: justify;
  text-justify: inter-word;
}

/*  BUTTON  // ICON  */
/* ------------------------------------------*/

.icon{
  font-size: 5em;
  color: grey;
  cursor:pointer;
  padding-right: 20px
}

.icon:hover{
  content: "\f05d";
  /* color: #1DA1F2; */
  color: #333;
}

/*  HEADER */
/* ------------------------------------------*/
.header{
  float: left;
  position: relative;
}

.header_welcome{

    /* position */
    position: absolute;
    text-align: right;
    bottom: 20px;
    right: 20px;
    padding-left: 18px;
    padding-right: 18px;

    /* font */
    background-color: rgba(0,0,0,0.4);
    color: white;
    font-size: 0.9vw;
  }

  /*  CONTAINERS */
  /* ------------------------------------------*/

  .container-out{
    margin: 70px;
    width: 100%;
    padding: 50 50 50 50;
    min-height: 100%;
    padding: 18px;
  }

  .container-in {
    margin: 50 50 50 50;
    width: 1000px;
    background: #ededed;
    border-radius: 10px;
  }

.container-box{
  float: left;
  width: 100%;
  padding: 10px 50px 10px 10px;
}

.container-box1{
  float: left;
  width: 75%;
  padding: 10px 50px 10px 10px;
}

/*  CONTAINERS-SPECYFIC */
/* ------------------------------------------*/

.table-contact tbody>tr>:nth-child(1){
  width: 50%;
  padding: 10px 50px 10px 50px;
  vertical-align: top;
  top: 0;
}

.table-contact tbody>tr>:nth-child(2){
  width: 50%;
  padding: 10px 50px 10px 20px;
  vertical-align: top;
  top: 0;
}
